@charset "UTF-8";
.hidebox {
  display: none !important;
}

.container.w890 {
  max-width: 890px;
}

.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.ellipsis-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.ellipsis-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ellipsis-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.ellipsis-4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.ellipsis-5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.ellipsis-6 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.pic-box {
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
  overflow: hidden;
}
.pic-box .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 0.4s;
}

.zn-login-main {
  width: var(--container-width);
  max-width: 406px;
  height: auto;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
  border-radius: 30px;
  background-color: #FFFFFF;
  padding: 1rem 0.5rem;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.zn-login-main .logo {
  width: 192px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.zn-login-main .title {
  text-align: center;
  color: #3D3D3D;
  margin-top: 20px;
  font-weight: 700;
}
.zn-login-main .input-list {
  width: 100%;
  box-sizing: border-box;
  padding-top: 40px;
}
.zn-login-main .input-box {
  --icon_width: 22px;
  --icon_color: #CBCBCB;
  width: 100%;
  height: 44px;
  line-height: 1;
  border-radius: 8px;
  border: 1px solid var(--icon_color);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.zn-login-main .input-box:not(:first-child) {
  margin-top: 20px;
}
.zn-login-main .input-box.active {
  --icon_color: #2FAFD0;
}
.zn-login-main .input-box.suc {
  --icon_color: #2FAFD0;
}
.zn-login-main .input-box.error {
  --icon_color: #E05F42;
}
.zn-login-main .input-box .input-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zn-login-main .input-box .input-icon .icon-box {
  display: inline-block;
  overflow: hidden;
}
.zn-login-main .input-box .input-icon .icon {
  width: 22px;
  height: 22px;
  display: block;
  transform: translateX(-22px);
  filter: drop-shadow(22px 0 var(--icon_color));
  -webkit-backdrop-filter: drop-shadow(22px 0 var(--icon_color));
  -webkit-filter: drop-shadow(22px 0 var(--icon_color));
}
.zn-login-main .input-box .input-i {
  flex: 1;
  height: 100%;
  line-height: 1;
  padding: 0 8px;
}
.zn-login-main .input_tips {
  text-align: center;
  margin-top: 8px;
  color: #E05F42;
}

.subbtn {
  --bg_color: #747474;
  width: 100%;
  height: 44px;
  line-height: 1;
  border-radius: 8px;
  margin-top: 40px;
  color: #FFFFFF;
  background-color: var(--bg_color);
  pointer-events: none;
  cursor: not-allowed;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}

[btn-type=login] {
  display: none;
}

.dont_click {
  --bg_color: #2FAFD0;
  pointer-events: all;
  cursor: pointer;
}

.can_click {
  --bg_color: #2FAFD0;
  pointer-events: all;
  cursor: pointer;
}

.zn-login {
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-page {
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 0.8rem;
  background-color: #F3F3F7;
  min-height: calc(100vh - 60px);
}
.zn-user {
  width: 100%;
}
.zn-user .zn-user-top {
  width: 100%;
  height: max(2.4rem, 170px);
  background-image: url("/html/phone/images/4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  padding-bottom: max(0.5rem, 22px);
  color: #FFFFFF;
  text-align: center;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.zn-user .zn-user-top .t1 {
  transition: all 0.4s;
}
.zn-user .zn-user-top .t2 {
  font-weight: 700;
  line-height: 1;
  transition: all 0.4s;
}
.zn-user .zn-user-main {
  margin: min(-0.8rem, -30px) auto 0;
  min-height: 72vh;
  border-radius: 30px;
  background-color: #FFFFFF;
  padding: max(0.5rem, var(--gap));
  justify-content: space-between;
}
.zn-user .zn-user-main .left-main {
  width: calc(334/1000*100%);
  box-sizing: border-box;
  flex-shrink: 0;
  border-right: 1px solid #DFDFDF;
  padding: 0 0.34rem 0 0;
  transition: all 0.4s;
}
.zn-user .zn-user-main .left-main .left-item1 {
  cursor: pointer;
  width: 100%;
  height: 56px;
  border-radius: 10px;
  padding: 0 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F3F3F7;
  color: #747474;
  transition: all 0.4s;
  margin-bottom: 16px;
  font-size: 16px;
}
.zn-user .zn-user-main .left-main .left-item1 .icon {
  width: 8px;
  height: auto;
  display: block;
}
.zn-user .zn-user-main .left-main .left-item1.active, .zn-user .zn-user-main .left-main .left-item1:hover {
  background: #2FAFD0;
  color: #FFFFFF;
}
.zn-user .zn-user-main .left-main .left-item1.active .icon, .zn-user .zn-user-main .left-main .left-item1:hover .icon {
  filter: brightness(100);
}
.zn-user .zn-user-main .left-main .left-item2 {
  width: 100%;
  padding: 8px 0;
  color: #747474;
  cursor: pointer;
}
.zn-user .zn-user-main .right-main {
  width: calc(630/1000*100%);
  box-sizing: border-box;
  padding: 0;
}
.zn-user .zn-user-main .right-main .right-box {
  width: 100%;
}
.zn-user .zn-user-main .right-main .right-box .tbox {
  color: #323232;
  font-weight: 700;
}
.zn-user .zn-user-main .right-main .right-box .search-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.zn-user .zn-user-main .right-main .right-box .search-box .inputs {
  flex: 1;
  margin-right: 12px;
  color: #323232;
  height: 42px;
  line-height: 42px;
  border-radius: 8px;
  padding: 0 10px;
  box-sizing: border-box;
  border: 1px solid #747474;
}
.zn-user .zn-user-main .right-main .right-box .coupon-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  flex-wrap: wrap;
}
.zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-box {
  width: 48.7%;
  height: auto;
  margin-bottom: 16px;
}
.zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item {
  --code: #2FAFD0;
  --tt: #323232;
  width: 100%;
  height: auto;
  border-radius: 16px;
  padding: 24px;
  background: #FFFFFF;
  box-sizing: border-box;
  border: 1px solid #CBCBCB;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.16);
}
.zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item.isExpired {
  --code: #929292;
  --tt: #929292;
}
.zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item .code-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item .code-box .code {
  color: var(--code);
  font-weight: 700;
}
.zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item .code-box .copy {
  cursor: pointer;
  color: #929292;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
.zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item .code-box .copy:hover {
  text-decoration: underline;
}
.zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item .name {
  color: var(--tt);
  margin-top: 16px;
  font-weight: 700;
}
.zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item .cont-click {
  cursor: pointer;
}
.zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item .cont-box {
  width: 100%;
  padding-top: 8px;
  color: #929292;
}
.zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item .cont-box .cont-text {
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item .cont-box .cont-text.on .icon {
  transform: rotate(180deg);
}
.zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item .cont-box .cont-text .icon {
  width: 10px;
  height: auto;
  display: block;
  margin-left: 8px;
  transition: all 0.4s;
}
.zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item .cont-box .cont-small {
  margin-top: 8px;
  line-height: 1.8;
}
.zn-user .zn-user-main .right-main .right-box .userinfo-box {
  width: 100%;
  border-radius: 16px;
  padding: 24px;
  background: #FFFFFF;
  box-sizing: border-box;
  border: 1px solid #CBCBCB;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.16);
  margin-top: 30px;
}
.zn-user .zn-user-main .right-main .right-box .userinfo-box .titem {
  width: 100%;
}
.zn-user .zn-user-main .right-main .right-box .userinfo-box .titem:not(:first-child) {
  margin-top: 30px;
}
.zn-user .zn-user-main .right-main .right-box .userinfo-box .titem .t1 {
  color: #323232;
  font-weight: 700;
  font-size: 18px;
}
.zn-user .zn-user-main .right-main .right-box .userinfo-box .titem .value {
  font-size: 16px;
}
.zn-user .zn-user-main .right-main .right-box .userinfo-box .titem .t-form {
  width: 100%;
  margin-top: 8px;
}
.zn-user .zn-user-main .right-main .right-box .userinfo-box .titem .t-form .t-tip {
  color: #E05F42;
  margin-top: 4px;
}
.zn-user .zn-user-main .right-main .right-box .userinfo-box .titem .t-form .value-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.zn-user .zn-user-main .right-main .right-box .userinfo-box .titem .t-form .value-box .value {
  max-width: 70%;
  padding-right: 12px;
  color: #747474;
}
.zn-user .zn-user-main .right-main .right-box .userinfo-box .titem .t-form .value-box .inputs {
  flex: 1;
  margin-right: 12px;
  color: #323232;
  height: 42px;
  line-height: 42px;
  border-radius: 8px;
  padding: 0 10px;
  box-sizing: border-box;
  border: 1px solid #747474;
}
.zn-user .zn-user-main .vbtn {
  --fz_color: #2FAFD0;
  --bg_color: #FFFFFF;
  min-width: 80px;
  padding: 0 12px;
  height: 42px;
  line-height: 42px;
  border-radius: 8px;
  box-sizing: border-box;
  border: 1px solid var(--fz_color);
  background-color: var(--bg_color);
  color: var(--fz_color);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
}
.zn-user .zn-user-main .vbtn.is_search {
  --fz_color: #FFFFFF;
  --bg_color: #747474;
}
.zn-user .zn-user-main .vbtn.on {
  --fz_color: #FFFFFF;
  --bg_color: #2FAFD0;
}
.zn-user .zn-user-main .vbtn.disable {
  pointer-events: none;
  cursor: not-allowed;
}
.zn-user .zn-user-main .vbtn.can_click {
  pointer-events: all;
  cursor: pointer;
}

@media only screen and (max-width: 1280px) {
  #user-page .zn-user {
    width: 100%;
  }
  #user-page .zn-user .zn-user-top .t1 {
    font-size: 28px;
    font-weight: 700;
  }
  #user-page .zn-user .zn-user-top .t2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1024px) {
  .zn-user {
    width: 100%;
  }
  .zn-user .zn-user-main {
    margin: min(-0.8rem, -30px) auto 0;
    min-height: 72vh;
    border-radius: none;
    background-color: transparent;
    padding: 0;
    justify-content: flex-start;
    -webkit-border-radius: none;
    -moz-border-radius: none;
    -ms-border-radius: none;
    -o-border-radius: none;
  }
  .zn-user .zn-user-main .left-main {
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    border-right: none;
    padding: 0;
    padding: 8px;
    border-radius: 16px;
    background-color: #FFFFFF;
    transition: all 0.4s;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
    display: flex;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
  }
  .zn-user .zn-user-main .left-main .left-item1 {
    cursor: pointer;
    width: calc((100% - 8px) /2);
    height: 56px;
    border-radius: 10px;
    padding: 0 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F3F3F7;
    color: #747474;
    transition: all 0.4s;
    margin-bottom: 0;
  }
  .zn-user .zn-user-main .left-main .left-item1 .icon {
    width: 8px;
    height: auto;
    display: none;
  }
  .zn-user .zn-user-main .left-main .left-item1.active, .zn-user .zn-user-main .left-main .left-item1:hover {
    background: #2FAFD0;
    color: #FFFFFF;
  }
  .zn-user .zn-user-main .left-main .left-item1.active .icon, .zn-user .zn-user-main .left-main .left-item1:hover .icon {
    filter: brightness(100);
  }
  .zn-user .zn-user-main .left-main .left-item1 + .left-item1 {
    margin-left: 8px;
  }
  .zn-user .zn-user-main .left-main .left-item2 {
    display: none;
    width: 100%;
    padding: 8px 0;
    color: #747474;
    cursor: pointer;
  }
  .zn-user .zn-user-main .right-main {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin-top: 30px;
  }
  .zn-user .zn-user-main .right-main .right-box {
    width: 100%;
  }
  .zn-user .zn-user-main .right-main .right-box.rbox1 {
    border-radius: 16px;
    overflow: hidden;
    padding: 14px 0;
    background: #ffffff;
  }
  .zn-user .zn-user-main .right-main .right-box .tbox {
    display: none;
    color: #323232;
    font-weight: 700;
  }
  .zn-user .zn-user-main .right-main .right-box .search-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0px;
  }
  .zn-user .zn-user-main .right-main .right-box .search-box .inputs {
    flex: 1;
    margin-right: 12px;
    color: #323232;
    height: 42px;
    line-height: 42px;
    border-radius: 8px;
    padding: 0 10px;
    box-sizing: border-box;
    border: 1px solid #747474;
  }
  .zn-user .zn-user-main .right-main .right-box .coupon-list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  .zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-box {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
  }
  .zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item {
    --code: #2FAFD0;
    --tt: #323232;
    width: 100%;
    height: auto;
    border-radius: 16px;
    padding: 24px;
    background: #FFFFFF;
    box-sizing: border-box;
    border: none;
    box-shadow: none;
  }
  .zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item.isExpired {
    --code: #929292;
    --tt: #929292;
  }
  .zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item .code-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item .code-box .code {
    color: var(--code);
    font-weight: 700;
  }
  .zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item .code-box .copy {
    cursor: pointer;
    color: #929292;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
  }
  .zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item .code-box .copy:hover {
    text-decoration: underline;
  }
  .zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item .name {
    color: var(--tt);
    margin-top: 16px;
    font-weight: 700;
  }
  .zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item .cont-click {
    cursor: pointer;
  }
  .zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item .cont-box {
    width: 100%;
    padding-top: 8px;
    color: #929292;
  }
  .zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item .cont-box .cont-text {
    margin-top: 10px;
    display: flex;
    align-items: center;
  }
  .zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item .cont-box .cont-text.on .icon {
    transform: rotate(180deg);
  }
  .zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item .cont-box .cont-text .icon {
    width: 10px;
    height: auto;
    display: block;
    margin-left: 8px;
    transition: all 0.4s;
  }
  .zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item .cont-box .cont-small {
    margin-top: 8px;
    line-height: 1.8;
  }
  .zn-user .zn-user-main .right-main .right-box .userinfo-box {
    width: 100%;
    border-radius: 0px;
    padding: 10px 16px;
    background: #FFFFFF;
    box-sizing: border-box;
    border: none;
    box-shadow: none;
    margin-top: 0;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }
  .zn-user .zn-user-main .right-main .right-box .userinfo-box .titem {
    width: 100%;
  }
  .zn-user .zn-user-main .right-main .right-box .userinfo-box .titem:not(:first-child) {
    margin-top: 30px;
  }
  .zn-user .zn-user-main .right-main .right-box .userinfo-box .titem .t1 {
    color: #323232;
    font-weight: 700;
  }
  .zn-user .zn-user-main .right-main .right-box .userinfo-box .titem .t-form {
    width: 100%;
    margin-top: 8px;
  }
  .zn-user .zn-user-main .right-main .right-box .userinfo-box .titem .t-form .t-tip {
    color: #E05F42;
    margin-top: 4px;
  }
  .zn-user .zn-user-main .right-main .right-box .userinfo-box .titem .t-form .value-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .zn-user .zn-user-main .right-main .right-box .userinfo-box .titem .t-form .value-box .value {
    padding-right: 12px;
    color: #747474;
  }
  .zn-user .zn-user-main .right-main .right-box .userinfo-box .titem .t-form .value-box .inputs {
    flex: 1;
    margin-right: 12px;
    color: #323232;
    height: 42px;
    line-height: 42px;
    border-radius: 8px;
    padding: 0 10px;
    box-sizing: border-box;
    border: 1px solid #747474;
  }
  .zn-user .zn-user-main .vbtn {
    --fz_color: #2FAFD0;
    --bg_color: #FFFFFF;
    height: 42px;
    line-height: 42px;
    border-radius: 8px;
    box-sizing: border-box;
    border: 1px solid var(--fz_color);
    background-color: var(--bg_color);
    color: var(--fz_color);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .zn-user .zn-user-main .vbtn.is_search {
    --fz_color: #FFFFFF;
    --bg_color: #747474;
  }
  .zn-user .zn-user-main .vbtn.on {
    --fz_color: #FFFFFF;
    --bg_color: #2FAFD0;
  }
  .zn-user .zn-user-main .vbtn.disable {
    pointer-events: none;
    cursor: not-allowed;
  }
  .zn-user .zn-user-main .vbtn.can_click {
    pointer-events: all;
    cursor: pointer;
  }
}
@media only screen and (max-width: 375px) {
  #user-page .zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-box {
    width: 100%;
  }
  #user-page .zn-user .zn-user-main .right-main .right-box .coupon-list .coupon-item {
    box-shadow: none;
    border: none;
  }
}
.page_banner {
  min-height: 140px;
  display: flex;
  align-items: center;
  padding: 56px 0;
}
.page_banner .text1 {
  text-align: center;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1;
  font-size: max(var(--fz56), 40px);
}
.page_banner .text2 {
  color: #FFFFFF;
  max-width: 550px;
  margin: 16px auto 0;
  text-align: center;
  line-height: 1.7;
  font-size: 16px;
}

.page_cate_btn .page_cate_list {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page_cate_btn .page_cate_list .swiper {
  width: 100%;
  margin: 0 auto;
}
.page_cate_btn .page_cate_list .swiper .swiper-slide {
  margin-right: 15px;
  width: auto !important;
  display: inline-block !important;
}
.page_cate_btn .page_cate_list .tabitem {
  width: auto;
  height: 36px;
  line-height: 36px;
  border-radius: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 22px;
  background: rgba(243, 243, 247, 0.2);
  color: #FFFFFF;
  transition: all 0.4s;
  cursor: pointer;
}
.page_cate_btn .page_cate_list .tabitem.active, .page_cate_btn .page_cate_list .tabitem:hover {
  background-color: #3BE3FE;
}

.page_com_list .page {
  margin-top: 60px;
  float: inherit;
}

.page {
  width: 100%;
  float: left;
  height: 40px;
  position: relative;
  --border_color: #E2E2E2;
  --bg_color: #fff;
  --fz_color: var(--color3);
}
.page.is_wordlview {
  --border_color: #CBCBCB;
  --bg_color: transparent;
  --fz_color: #747474;
}
.page.is_wordlview a:hover, .page.is_wordlview a.on {
  --border_color: #3BE3FE;
  --bg_color: rgba(59, 227, 254, 0.17);
  --fz_color: #3BE3FE;
}
.page .page-box {
  float: left;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  display: flex;
  justify-content: center;
}
.page a {
  min-width: 40px;
  display: inline-block;
  float: left;
  padding: 0;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--fz_color);
  border-radius: 6px;
  border: var(--border_color) 1px solid;
  margin: 0 5px;
  background-color: var(--bg_color);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.page a:hover, .page a.on {
  --border_color: var(--color1);
  --bg_color: #defbff;
  --fz_color: var(--color1);
}
.page a.null {
  display: none;
}
.page a.prev, .page a.next {
  text-align: center;
  font-family: "宋体";
}
.page a span {
  display: inline-block;
  float: left;
  width: 38px;
  height: 38px;
  text-align: center;
  border-radius: 6px;
  overflow: hidden;
  line-height: 38px;
  color: var(--fz_color);
}
.page div.select,
.page div.f-right {
  display: none;
}

.page.left .page-box {
  left: 0;
  transform: translate(0, 0);
}

.page.left .page-box {
  left: 0;
  transform: translate(0, 0);
}

.worldview_list {
  width: 100%;
  padding: 40px 0 max(1rem, 60px);
}
.worldview_list .item-box {
  width: 100%;
  border-radius: 30px;
  display: flex;
  padding: max(0.24rem, 8px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s;
  box-sizing: border-box;
}
.worldview_list .item-box + .item-box {
  margin-top: 40px;
}
.worldview_list .item-box .item-pic {
  width: calc(550/1150*100%);
  height: auto;
  flex-shrink: 0;
}
.worldview_list .item-box .item-pic .pic-box {
  width: 100%;
  padding-top: calc(309/550*100%);
  box-sizing: border-box;
  height: auto;
  border-radius: 8px;
}
.worldview_list .item-box .item-pic .world_tag {
  display: none;
  margin-bottom: 0;
}
.worldview_list .content {
  width: calc(602/1150*100%);
  padding-left: 0.4rem;
  color: #FFFFFF;
  padding-top: 16px;
}
.worldview_list .content .name {
  font-weight: bold;
  letter-spacing: 0.37px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.worldview_list .content .value {
  margin-bottom: 24px;
}
.worldview_list .content .more {
  color: #278CFF;
}

@media only screen and (max-width: 768px) {
  .worldview_list {
    width: 100%;
    padding: 40px 0 max(1rem, 60px);
  }
  .worldview_list .item-box {
    width: 100%;
    border-radius: 16px;
    display: flex;
    padding: max(0.24rem, 8px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s;
    box-sizing: border-box;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
  }
  .worldview_list .item-box + .item-box {
    margin-top: 40px;
  }
  .worldview_list .item-box .item-pic {
    width: calc(110/343*100%);
    height: auto;
    flex-shrink: 0;
  }
  .worldview_list .item-box .item-pic .pic-box {
    width: 100%;
    padding-top: calc(110/110*100%);
    box-sizing: border-box;
    height: auto;
    border-radius: 8px;
    margin-bottom: 14px;
  }
  .worldview_list .item-box .item-pic .world_tag {
    width: 100%;
    display: inline-flex;
    margin-bottom: 0;
  }
  .worldview_list .content {
    width: 100%;
    padding-left: 16px;
    color: #FFFFFF;
    padding-top: 0;
  }
  .worldview_list .content .name {
    font-weight: bold;
    letter-spacing: 0.37px;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .worldview_list .content .world_tag {
    display: none;
  }
  .worldview_list .content .value {
    margin-bottom: 10px;
  }
  .worldview_list .content .more {
    color: #278CFF;
  }
}
.world_tag {
  color: #323232;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  background: #DEF8FF;
  margin-bottom: 24px;
  line-height: 1;
}

.world_view .world_view_container {
  padding-bottom: 1rem;
}
.world_view .world_view_container .view_tt {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 30px;
}
.world_view .world_view_container .view_cc {
  color: #ffffff;
}

.zn-news-main {
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.paginate-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.6rem;
}
.paginate-box .paginate-item {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 6px;
  border: 1px solid #CBCBCB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #747474;
  background-color: transparent;
  cursor: pointer;
}
.paginate-box .paginate-item:last-child {
  margin-right: 0;
}
.paginate-box .paginate-item.on, .paginate-box .paginate-item:hover {
  border: 1px solid #3BE3FE;
  color: #3BE3FE;
}
.paginate-box .paginate-item.on .icon, .paginate-box .paginate-item:hover .icon {
  transform: translateX(-7px);
  filter: drop-shadow(7px 0 #3BE3FE);
  -webkit-backdrop-filter: drop-shadow(7px 0 #3BE3FE);
  -webkit-filter: drop-shadow(7px 0 #3BE3FE);
}
.paginate-box .paginate-item .paginate-icon {
  width: 7px;
  height: auto;
  display: block;
  overflow: hidden;
}
.paginate-box .paginate-item .icon {
  width: 7px;
  height: auto;
  display: block;
  transform: translateX(-7px);
  filter: drop-shadow(7px 0 #747474);
  -webkit-backdrop-filter: drop-shadow(7px 0 #747474);
  -webkit-filter: drop-shadow(7px 0 #747474);
}
.paginate-box .paginate-item.paginate-next {
  transform: rotate(180deg);
}

.zn-skstoast {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
}
.zn-skstoast.on {
  z-index: 200;
  opacity: 1;
  visibility: visible;
}
.zn-skstoast .zn-skstoast-mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.zn-skstoast .zn-skstoast-main {
  width: 100%;
  position: relative;
  z-index: 5;
}
.zn-skstoast .zn-skstoast-main .zn-skstoast-box {
  width: 100%;
}
.zn-skstoast .zn-skstoast-main .zn-skstoast-box .close {
  width: 36px;
  height: auto;
  display: block;
  margin: 20px auto 0;
}
.zn-skstoast .zn-skstoast-main .zn-skstoast-box .zn-login-main {
  padding-top: 50px;
  padding-bottom: 50px;
}
.zn-skstoast .zn-skstoast-main .zn-skstoast-box .zn-login-main .image {
  width: 55px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.page_com_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.page_com_bg .page_bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
}

.login_mob {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 10px;
  /* 辅助色/浅灰蓝0.5 */
  background: #F3F3F7;
}
.login_mob .login_mob_btn {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #2FD1EB 0%, #2FAFD0 100%);
}
.login_mob .login_mob_btn .svg {
  width: 24px;
}
.login_mob .login_mob_btn .tt {
  margin-left: 20px;
  font-size: 16px;
  color: #ffffff;
}

.user_login_out {
  width: 100%;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #747474;
  background-color: #f3f3f7;
  font-size: 18px;
}

#zn-index-page {
  width: 100%;
  background-color: #F3F3F7;
  box-sizing: border-box;
}
#zn-index-page .zn-height {
  width: 100%;
  height: 1rem;
}

.zn-index-goods {
  --hot_color: #ffffff;
  width: 100%;
  padding-top: 1rem;
  background-color: #f3f3f7;
  overflow: hidden;
}
.zn-index-goods .goods-title {
  width: 100%;
  padding: 0 4%;
  box-sizing: border-box;
  font-weight: 700;
  font-size: max(2.08vw, 16px);
}
.zn-index-goods .goods-pagination {
  display: none !important;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 10px;
  margin-top: 0.24rem;
}
.zn-index-goods .goods-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: block;
  background-color: #CBCBCB;
  border-radius: 50%;
}
.zn-index-goods .goods-pagination .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}
.zn-index-goods .goods-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #3BE3FE;
}
.zn-index-goods .swiper_box {
  margin: 0.4rem max(0.24rem, 16px) 0;
}
.zn-index-goods .swiper {
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 16px;
  position: relative;
  overflow: visible;
}
.zn-index-goods .swiper .swiper-wrapper {
  display: flex;
}
.zn-index-goods .swiper .swiper-slide {
  line-height: 0;
  width: calc(420/1872*100%);
  height: auto;
  margin-right: 24px;
}
.zn-index-goods .swiper .swiper-slide.good-hot {
  width: calc(924/1872*100%);
}
.zn-index-goods .goods-mobile-hot {
  width: calc(100% - var(--gap) - var(--gap));
  margin: var(--gap) var(--gap) 0;
}

@media only screen and (min-width: 1400px) {
  .zn-index-goods .swiper .swiper-slide.good-hot {
    width: calc(924/1872*100%);
    min-height: 400px;
  }
}
.shopify_index_item {
  display: block;
  --name_size: 30px;
  --b_price: 40px;
  --s_price: 28px;
  --tag_size: 22px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: max(0.3rem, 10px);
  background: #FFFFFF;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.shopify_index_item.is_hot {
  padding: 0;
}
.shopify_index_item.is_hot .pic {
  position: static;
  padding-top: 0;
}
.shopify_index_item.is_hot .pic .pic-tag {
  top: 30px;
  right: 30px;
}
.shopify_index_item.is_hot .pic .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shopify_index_item.is_hot .cont {
  position: relative;
  margin-top: 0;
  padding: 50px;
}
.shopify_index_item.is_hot .cont .name {
  color: var(--hot_color);
  max-width: 300px;
  height: auto;
}
.shopify_index_item.is_hot .cont .price .big {
  color: var(--hot_color);
}
.shopify_index_item.is_hot .cont .price .small {
  color: var(--hot_color);
}
.shopify_index_item.is_list {
  --name_size: 22px;
  --b_price: 18px;
  --s_price: 18px;
  --tag_size: 18px;
}
.shopify_index_item .pic {
  width: 100%;
  height: auto;
  position: relative;
  transition: all 0.4s;
  padding-top: calc(1000/1000*100%);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
}
.shopify_index_item .pic .pic-tag {
  position: absolute;
  right: 0;
  top: 0px;
  width: auto;
  height: auto;
  line-height: 1;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: max(0.08rem, 6px) max(0.16rem, 4px);
  background: #2FAFD0;
  color: #FFFFFF;
  z-index: 5;
  font-size: var(--tag_size);
}
.shopify_index_item .pic .image {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 0.4s;
  object-fit: cover;
}
.shopify_index_item .cont {
  margin-top: 12px;
  width: 100%;
}
.shopify_index_item .cont .tag-show {
  width: 100%;
  display: flex;
  align-items: center;
  transition: all 0.4s;
}
.shopify_index_item .cont .tag-show .tag {
  width: auto;
  line-height: 1;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px max(0.08rem, 4px);
  margin-right: max(0.12rem, 4px);
  color: #FFFFFF;
  font-size: var(--tag_size);
}
.shopify_index_item .cont .tag-show .tag.tv1 {
  background: #FFB82A;
}
.shopify_index_item .cont .tag-show .tag.tv2 {
  background: #278CFF;
}
.shopify_index_item .cont .name {
  color: #323232;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 10px;
  height: calc(var(--name_size) * 2.26);
  transition: all 0.4s;
  font-size: var(--name_size);
}
.shopify_index_item .cont .price {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-top: max(0.2rem, 8px);
  line-height: 1;
  transition: all 0.4s;
}
.shopify_index_item .cont .price .big {
  font-weight: 700;
  color: #2FAFD0;
  font-size: var(--b_price);
}
.shopify_index_item .cont .price .s {
  display: inline-block;
  margin-right: -6px;
}
.shopify_index_item .cont .price .small {
  color: #929292;
  margin-left: max(0.2rem, 8px);
  text-decoration: line-through;
  font-size: var(--s_price);
}

.index_section_tt {
  font-size: max(1.45vw, 16px);
  color: #3D3D3D;
  line-height: 1.34;
  font-weight: 700;
}

.index_section_dd {
  font-size: max(0.93vw, 16px);
  color: #747474;
  font-weight: 700;
  line-height: 1.5;
}

@media only screen and (max-width: 1600px) {
  .shopify_index_item:not(.is_list) {
    --name_size: 24px;
    --b_price: 30px;
    --s_price: 22px;
    --tag_size: 20px;
  }
}
@media only screen and (max-width: 1280px) {
  .shopify_index_item:not(.is_list) {
    --name_size: 20px;
    --b_price: 20px;
    --s_price: 18px;
    --tag_size: 16px;
  }
}
@media only screen and (max-width: 1024px) {
  .shopify_index_item:not(.is_list) {
    --name_size: 14px;
    --b_price: 14px;
    --s_price: 14px;
    --tag_size: 10px;
  }
  .shopify_index_item.is_list {
    --name_size: 14px;
    --b_price: 14px;
    --s_price: 14px;
    --tag_size: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .shopify_index_item.is_hot {
    height: 270px;
    padding: 0;
  }
  .shopify_index_item.is_hot .pic {
    position: static;
    padding-top: 0;
  }
  .shopify_index_item.is_hot .pic .pic-tag {
    top: 30px;
    right: 30px;
  }
  .shopify_index_item.is_hot .pic .image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .shopify_index_item.is_hot .cont {
    position: relative;
    margin-top: 0;
    padding: max(0.2rem, 20px);
  }
  .shopify_index_item.is_hot .cont .name {
    color: #FFFFFF;
    max-width: 300px;
    height: auto;
  }
  .shopify_index_item.is_hot .cont .price .big {
    color: #FFFFFF;
  }
  .shopify_index_item.is_hot .cont .price .small {
    color: #FFFFFF;
  }
}
.zn-index-help {
  width: 100%;
  padding: max(0.5rem, 25px) 0;
  background-color: #f3f3f7;
}
.zn-index-help .small-title {
  color: #747474;
  font-weight: 700;
}
.zn-index-help .normal-title {
  color: #3D3D3D;
  margin-top: 0.1rem;
  font-weight: 700;
}
.zn-index-help .swiper {
  width: 100%;
  margin-top: 0.4rem;
  overflow: hidden;
}
.zn-index-help .swiper .help-item {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  overflow: hidden;
  padding-top: calc(372/1000*100%);
  position: relative;
  display: block;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.16);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.zn-index-help .swiper .help-item .image {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  object-fit: cover;
}
.zn-index-help .tablist {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.zn-index-help .tablist .tabitem {
  width: 32%;
  height: 60px;
  line-height: 1;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
  margin-right: 2%;
  margin-top: 0.35rem;
  background-color: #DFDFDF;
  color: #323232;
  transition: all 0.4s;
}
.zn-index-help .tablist .tabitem:nth-child(3n) {
  margin-right: 0;
}
.zn-index-help .tablist .tabitem.on {
  background: #DEF8FF;
  color: #2FAFD0;
}

@media only screen and (max-width: 980px) {
  .zn-index-help .tablist .tabitem {
    height: 50px;
    margin-top: 16px;
  }
}
@media only screen and (max-width: 670px) {
  .zn-index-help .tablist .tabitem {
    width: 100%;
    margin-right: 0;
    border-radius: 10px;
    box-shadow: none;
  }
}
.zn-index-shop {
  width: 100%;
  padding: max(0.5rem, 25px) 0;
  background-color: #f3f3f7;
  overflow: hidden;
}
.zn-index-shop .index-shop-main {
  position: relative;
}
.zn-index-shop .goods3-pagination {
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 10px;
  margin-top: 0.34rem;
}
.zn-index-shop .goods3-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: block;
  background-color: #CBCBCB;
  border-radius: 50%;
}
.zn-index-shop .goods3-pagination .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}
.zn-index-shop .goods3-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #3BE3FE;
}
.zn-index-shop .swiper {
  width: 100%;
  box-sizing: border-box;
  margin-top: 40px;
  padding-bottom: 16px;
  overflow: visible;
}
.zn-index-shop .swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.zn-index-shop .swiper .swiper-slide {
  width: 320px;
  margin-right: 30px;
  height: auto;
}

.zn-banner {
  width: 100%;
  transition: all 0.4s;
}
.zn-banner .swiper {
  width: 100%;
  height: 100%;
}
.zn-banner .swiper .banner-item {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zn-banner .swiper .banner-item .image {
  width: 100%;
}
.zn-banner .swiper .banner-item .cont_view {
  display: flex;
  align-items: center;
  justify-content: center;
}
.zn-banner .swiper .banner-item .cont {
  position: relative;
  max-width: 1020px;
  padding: var(--gap) 0;
}
.zn-banner .swiper .banner-item .cont .showt {
  font-weight: 700;
  color: #FFB82A;
}
.zn-banner .swiper .banner-item .cont .showprice {
  color: #FFFFFF;
  font-size: 16px;
  margin-top: 16px;
}
.zn-banner .swiper .banner-item .cont .showbtn {
  margin-top: 40px;
}

@media only screen and (max-width: 568px) {
  .zn-banner {
    width: 100%;
  }
  .zn-banner .swiper .banner-item {
    padding: 0;
  }
  .zn-banner .swiper .banner-item .cont_view {
    align-items: flex-end;
  }
  .zn-banner .swiper .banner-item .cont {
    padding: var(--gap) 0;
  }
  .zn-banner .swiper .banner-item .showt {
    font-size: 30px;
    line-height: 1.1;
    text-shadow: -2px -2px 0 #DB7C16, 2px -2px 0 #DB7C16, -2px 2px 0 #DB7C16, 2px 2px 0 #DB7C16;
    /* 描边效果 */
  }
  .zn-banner .swiper .banner-item .showprice {
    font-size: 16px;
    margin-top: 10px;
  }
  .zn-banner .swiper .banner-item .showbtn {
    height: 50px;
    border-radius: 25px;
    width: 100%;
    font-size: 18px;
    font-weight: 550;
    margin-top: 30px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
  }
}